home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 1.toast / What's New? / Development Kits / Mac OS / USB DDK 1.4.6f4 / Examples / USBEnetSample / USBEnetStub.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-08-23  |  1.2 KB  |  37 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        USBEnetStub.h
  3.  
  4.     Contains:    xxx put contents here xxx
  5.  
  6.     Version:    xxx put version here xxx
  7.  
  8.     Copyright:    © 2000 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     File Ownership:
  11.  
  12.         DRI:                xxx put dri here xxx
  13.  
  14.         Other Contact:        xxx put other contact here xxx
  15.  
  16.         Technology:            xxx put technology here xxx
  17.  
  18. */
  19.  
  20. #ifndef    _USBENETSTUB_
  21. #define    _USBENETSTUB_
  22.  
  23. /********************************************************************************************/
  24. //
  25. //    Prototypes
  26. //
  27. /********************************************************************************************/
  28.  
  29. static OSStatus USBEnetDriverValidateHW(USBDeviceRef device, USBDeviceDescriptor *desc);
  30. static OSStatus USBEnetDriverInitInterface(UInt32 interfaceNum, USBInterfaceDescriptor *interfaceDesc, USBDeviceDescriptor *deviceDesc, USBDeviceRef device);
  31. static OSStatus USBEnetDriverInitialize(USBDeviceRef device, USBDeviceDescriptorPtr pDesc, UInt32 busPowerAvailable);
  32. static OSStatus USBEnetDriverFinalize(USBDeviceRef device, USBDeviceDescriptorPtr pDesc);
  33. static OSStatus ExpertEntryProc(ExpertNotificationProcPtr pExpertNotify);
  34. static OSStatus    USBEnetDriverNotifyProc(UInt32 notification, void *pointer, UInt32 refcon);
  35.  
  36. #endif
  37.